/* Use CSS compatible with Bootstrap 5.3.0*/



/* index.html css settings */
.index-div{
    position: relative;
    background-color: black;
}

.index-pic{
    width: 50vw;
}

.index-text-main{
    position: absolute;
    top: 5vw;
    left: 55vw;
    font-size: 8vw;
    font-family: 'Great Vibes', cursive;
    color: white;
}

.index-text-sub{
    position: absolute;
    top: 25vw;
    left: 55vw;
    font-size: 3.5vw;
    font-family:'Tangerine', cursive;
}

.index-btn{
    position:absolute;
    top: 35vw;
    left: 55vw;
    font-size: 2vw;
    text-decoration: none;
    color: rgba(0, 51, 102, 0.85);
}

.index-btn:hover{
    color: rgba(0, 51, 102, 0.5);
}

.index-btn-original{
    text-decoration: none;
    font-size: 2vw;
    color:rgba(127, 51, 208, 0.7);
}

.index-btn-original:hover{
    color:rgba(127, 51, 208, 1)
}


/* Navbar Section */

/* End Navbar Section */


/* Content Section */
/*
.content-box{
    height: 300px;
    overflow: hidden;
    position: relative;
}

.content-pic-box{
    height: 100%;
    width: 30%;
    float: left;
    overflow: hidden;
    position: relative;
}

.content-pic{
    margin: 0px;
    width: 100%;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
}

.content-topic{
    width: 70%;
    height: 20%;
    float: right;
}

.content-topic:hover{
    background: yellow;
}

.content-main{
    width: 70%;
    float: right;
    height: 70%;
    overflow: hidden;
}

.content-more{
    width: 70%;
    float: right;
    height: 10%;
}

.see-more{
    float: right;
}
*/


@media screen and (min-width: 100px){
    .content-img-size{
        max-height: 40vh;
    }
}

@media screen and (min-width: 768px){
    .content-img-size{
        max-height: 80%;
        width: auto;
    }

    .content-size{
        max-height: 40vh;
    }

}